home *** CD-ROM | disk | FTP | other *** search
/ MacFormat España 4 / MacFormat n. 4 (Spain) / MacFormat 4.bin / Demos / Dazzleoids / SHARED.DIR / 00864.ls < prev    next >
Encoding:
Text File  |  1994-10-13  |  267 b   |  23 lines

  1. on exitFrame
  2.   go(the frame)
  3. end
  4.  
  5. on keyDown
  6.   shutUp()
  7.   if the key = RETURN then
  8.     doSomething()
  9.   end if
  10.   if the key = ENTER then
  11.     doSomething()
  12.   end if
  13. end
  14.  
  15. on doSomething
  16.   global gOnOK
  17.   if gOnOK = 1 then
  18.     go("pick")
  19.   else
  20.     play done
  21.   end if
  22. end
  23.